From: Colin Walters Date: Mon, 1 Aug 2016 01:03:16 +0000 (-0400) Subject: deploy: Replace a use of gs_file_enumerator with compat wrapper X-Git-Tag: archive/raspbian/2022.1-3+rpi1~1^2~4^2~49^2~39 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=6f172378498d42f942828cca44e9efc9fa936c45;p=ostree.git deploy: Replace a use of gs_file_enumerator with compat wrapper More libglnx/glib porting. Closes: #423 Approved by: giuseppe --- diff --git a/src/libostree/ostree-sysroot-deploy.c b/src/libostree/ostree-sysroot-deploy.c index e8c61ad5..779c7dc1 100644 --- a/src/libostree/ostree-sysroot-deploy.c +++ b/src/libostree/ostree-sysroot-deploy.c @@ -662,8 +662,8 @@ relabel_recursively (OstreeSysroot *sysroot, GFile *child; GFileType ftype; - if (!gs_file_enumerator_iterate (direnum, &file_info, &child, - cancellable, error)) + if (!g_file_enumerator_iterate (direnum, &file_info, &child, + cancellable, error)) goto out; if (file_info == NULL) break;